* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* HERO SECTION */
.simple-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* BREADCRUMB */
.breadcrumb-bar {
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 16px 25px;
    font-size: 18px;
    z-index: 10;
}

.breadcrumb-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-bar span {
    margin: 0 5px;
}

.hero-img {
    height: 460px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}

/* TEXT CENTER */
.hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 180px 20px 0px;
    background: rgba(0, 0, 0, 0.55); /* light overlay */
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ff7a2f;
}

.hero-text p {
    font-size: 35px;
    font-weight: 400;
    max-width: 90%;
}

/* Images */
.hero-1 {
    background-image: url("../../../images/home/banner 2_compressed.webp");
}
.hero-2 {
    background-image: url("../../../images/home/banner 2_compressed.webp");
}
.hero-3 {
    background-image: url("../../../images/home/banner 2_compressed.webp");
}

/* Responsive */
@media (max-width: 768px) {
    .hero-img {
        height: 260px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 15px;
    }
}

/* ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-img {
        height: 260px;
    }

    .breadcrumb-bar {
        font-size: 12px;
        left: 15px;
        bottom: 15px;
    }
}

/* ================= ARROWS ================= */
.custom-arrow {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    color: #ff7a2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

/* Hover Effect */
.custom-arrow:hover {
    background: #ff7a2f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 122, 47, 0.6);
}

/* Position Fix */
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .custom-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* JAGRATI SPECIFIC STYLES */

/* Main container */
.jagrati-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 150px 40px;
    min-height: 80vh;
    background: linear-gradient(90deg, #fff0f6 0%, #f4f0ff 100%);
    box-sizing: border-box;
    overflow: hidden;
}

/* Left column */
.jagrati-content {
    max-width: 520px;
}

.jagrati-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff4ecd 0%, #7b60ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 18px;
}

.jagrati-desc {
    font-size: 1.35rem;
    color: #444;
    margin-bottom: 36px;
    line-height: 1.5;
}

.jagrati-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.jagrati-btn-primary {
    background: linear-gradient(90deg, #ff4ecd 0%, #7b60ff 100%);
    color: #fff;
    border: none;
    border-radius: 32px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(123, 96, 255, 0.08);
    transition: background 0.2s;
}

.jagrati-btn-primary:hover {
    background: linear-gradient(90deg, #7b60ff 0%, #ff4ecd 100%);
}

.jagrati-btn-outline {
    background: #fff;
    color: #d726a3;
    border: 2px solid #d726a3;
    border-radius: 32px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
}

.jagrati-btn-outline:hover {
    background: #fce4f9;
    color: #7b60ff;
    border-color: #7b60ff;
}

.jagrati-stats {
    display: flex;
    gap: 48px;
    margin-top: 24px;
}

.jagrati-stat {
    text-align: center;
}

.jagrati-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #d726a3;
}

.jagrati-stat-label {
    font-size: 1rem;
    color: #555;
}

/* Right column: image card */
.jagrati-image-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(123, 96, 255, 0.12);
    padding: 16px;
    transform: rotate(4deg);
    max-width: 420px;
    margin-left: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jagrati-image-card img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

.jagrati-star {
    position: absolute;
    top: 18px;
    right: -28px;
    background: #d726a3;
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(215, 38, 163, 0.18);
    border: 4px solid #fff;
}

/* Mission Section Styles (improved) */
.mission-section {
    width: 100%;
    background: linear-gradient(90deg, #fff0f6 0%, #f4f0ff 100%);
    padding: 64px 0 64px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-top: 0;
    overflow: hidden;
}
.mission-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mission-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.mission-title-dark {
    color: #191c24;
}
.mission-title-highlight {
    color: #c94be6;
}
.mission-desc {
    font-size: 1.25rem;
    color: #444;
    text-align: center;
    margin-bottom: 38px;
    line-height: 1.5;
}
.mission-content {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 950px;
}
.objectives-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(123, 96, 255, 0.08);
    padding: 32px 32px 28px 32px;
    min-width: 320px;
    max-width: 420px;
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.objectives-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #191c24;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.objectives-title i {
    color: #c94be6;
    font-size: 1.3em;
}
.objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.objectives-list li {
    font-size: 1.08rem;
    color: #222;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 7px;
}
.dot-pink {
    background: #d726a3;
}
.dot-purple {
    background: #7b60ff;
}
.dot-blue {
    background: #3b82f6;
}

.empowering-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(123, 96, 255, 0.12);
    overflow: hidden;
    min-width: 320px;
    max-width: 420px;
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.empowering-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}
.empowering-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(
        0deg,
        rgba(25, 28, 36, 0.82) 60%,
        rgba(25, 28, 36, 0.12) 100%
    );
    color: #fff;
    padding: 28px 22px 18px 22px;
    border-radius: 0 0 18px 18px;
}
.empowering-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.empowering-desc {
    font-size: 1.02rem;
    font-weight: 400;
}

/* Activities Section Styles */
.activities-section {
    width: 100%;
    background: #fafbfc;
    padding: 64px 0 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
}
.activities-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.activities-title-dark {
    color: #191c24;
}
.activities-title-highlight {
    color: #c94be6;
}
.activities-desc {
    font-size: 1.25rem;
    color: #444;
    text-align: center;
    margin-bottom: 38px;
    line-height: 1.5;
}
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    width: 100%;
    max-width: 1200px;
}
.activity-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(123, 96, 255, 0.08);
    padding: 32px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 180px;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.activity-card:hover {
    box-shadow: 0 8px 32px rgba(123, 96, 255, 0.16);
    transform: translateY(-4px) scale(1.02);
}
.activity-icon {
    color: #d726a3;
    font-size: 2.2rem;
    margin-bottom: 18px;
}
.activity-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #191c24;
    margin-bottom: 8px;
}
.activity-desc {
    font-size: 1.05rem;
    color: #444;
    font-weight: 400;
}

/* Impact Section Styles */
.impact-section {
    width: 100%;
    background: #fff;
    padding: 64px 0 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
}
.impact-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.impact-title-dark {
    color: #191c24;
}
.impact-title-highlight {
    color: #c94be6;
}
.impact-desc {
    font-size: 1.25rem;
    color: #444;
    text-align: center;
    margin-bottom: 38px;
    line-height: 1.5;
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    width: 100%;
    max-width: 1200px;
}
.impact-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(123, 96, 255, 0.1);
    min-height: 260px;
    background: #eee;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
    display: flex;
    align-items: stretch;
}
.impact-card:hover {
    box-shadow: 0 12px 36px rgba(123, 96, 255, 0.18);
    transform: translateY(-4px) scale(1.02);
}
.impact-img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    filter: brightness(0.82);
}
.impact-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 32px 28px 22px 28px;
    background: linear-gradient(
        0deg,
        rgba(25, 28, 36, 0.82) 60%,
        rgba(25, 28, 36, 0.12) 100%
    );
    color: #fff;
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.impact-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.38);
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(215, 38, 163, 0.1);
}
.impact-card-title {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 80px;
}
.impact-card-desc {
    font-size: 1.08rem;
    font-weight: 400;
}

/* Gallery Section Styles */
.gallery-section {
    width: 100%;
    background: #fafbfc;
    padding: 64px 0 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
}
.gallery-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.gallery-title-dark {
    color: #191c24;
}
.gallery-title-highlight {
    color: #c94be6;
}
.gallery-desc {
    font-size: 1.25rem;
    color: #444;
    text-align: center;
    margin-bottom: 38px;
    line-height: 1.5;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    width: 100%;
    max-width: 1200px;
}
.gallery-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(123, 96, 255, 0.08);
    transition:
        box-shadow 0.2s,
        transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}
.gallery-item:hover {
    box-shadow: 0 8px 32px rgba(123, 96, 255, 0.16);
    transform: translateY(-4px) scale(1.03);
}
.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .jagrati-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 4vw;
    }
    .jagrati-image-card {
        margin: 32px 0 0 0;
        max-width: 100%;
        transform: none;
    }
    .mission-content {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }
    .objectives-card,
    .empowering-card {
        max-width: 100%;
        min-width: 0;
    }
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .activity-card {
        padding: 24px 12px 18px 12px;
    }
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .impact-card {
        min-height: 180px;
    }
    .impact-img {
        min-height: 180px;
    }
    .impact-overlay {
        padding: 18px 10px 12px 10px;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }
    .gallery-item img {
        height: 120px;
    }
}
@media (max-width: 600px) {
    .jagrati-title {
        font-size: 2.1rem;
    }
    .jagrati-desc {
        font-size: 1rem;
    }
    .jagrati-section {
        padding: 24px 2vw;
    }
    .jagrati-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .jagrati-stats {
        gap: 18px;
        flex-direction: column;
        align-items: flex-start;
    }
    .mission-section {
        padding: 24px 2vw;
    }
    .mission-title {
        font-size: 2rem;
    }
    .mission-desc {
        font-size: 1rem;
    }
    .objectives-card,
    .empowering-card {
        padding: 18px 8px 14px 8px;
    }
    .empowering-img {
        height: 160px;
    }
    .empowering-caption {
        padding: 14px 8px 10px 8px;
    }
    .activities-section {
        padding: 32px 2vw;
    }
    .activities-title {
        font-size: 2rem;
    }
    .activities-desc {
        font-size: 1rem;
    }
    .impact-section {
        padding: 32px 2vw;
    }
    .impact-title {
        font-size: 2rem;
    }
    .impact-desc {
        font-size: 1rem;
    }
    .impact-card-title {
        font-size: 1.1rem;
        margin-top: 50px;
    }
    .gallery-section {
        padding: 32px 2vw;
    }
    .gallery-title {
        font-size: 2rem;
    }
    .gallery-desc {
        font-size: 1rem;
    }
    .gallery-item img {
        height: 80px;
    }
}
